home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000006_news@columbia.edu_Fri Dec 1 14:48:17 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27695
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Fri, 1 Dec 1995 09:48:27 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id JAA16087 for kermit.misc@watsun; Fri, 1 Dec 1995 09:48:23 -0500
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: set speed 57600
  8. Date: 1 Dec 1995 14:48:17 GMT
  9. Organization: Columbia University
  10. Lines: 56
  11. Message-Id: <49n4jh$fmi@apakabar.cc.columbia.edu>
  12. References: <49i3ru$37t@linus.mitre.org>
  13. Nntp-Posting-Host: watsun.cc.columbia.edu
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <49i3ru$37t@linus.mitre.org>, Jeff Heim  <jheim@mitre.org> wrote:
  17. : I'm trying to live dangerously and transfer
  18. : a file at 57600 over a Microcom 28.8 modem.
  19. : I'm using c-kermit 5a(190) on an Alpha running
  20. : VMS but when I do the kermit set speed command
  21. : I get: ?No keywords match - 57600.  
  22. Are you dialing out from VMS or dialing into it?
  23. If you are dialing into it, this should not be an
  24. issue.
  25.  
  26. : I've set the local terminal speed to 57600
  27. : and can get connected to the remote computer
  28. : at the higher baud rate outside of kermit.
  29. : Is there anything I can do to try the higher
  30. : baud rate?
  31. Let's assume you are dialing out from VMS.  In that
  32. case, the problem is that C-Kermit does not believe
  33. that VMS supports 57600 bps as a valid speed.  In fact,
  34. until recently, VMS did not support any speeds above
  35. 19200.  Nor did it support RTS/CTS flow control.
  36.  
  37. What happens if you do this? --
  38.  
  39. Before starting Kermit, tell VMS to:
  40.  
  41.   set term txa2 /speed=57600 /perm
  42.  
  43. Then start Kermit, type "show comm" and see what it says
  44. about the speed.
  45.  
  46. : A side note.  Kermit works fine at 38400 and
  47. : I get decent performance (~2300 CPS, 59% efficiency)
  48. : using 1 window and 3000 byte packet length transfering
  49. : a large (900,000 byte) binary file.  However, when I use
  50. : more than 1 window performance gets really bad (13% efficiency,
  51. : 480 CPS)
  52. That's no doubt because of buffering and flow control deficiencies
  53. in your setup -- the terminal server and/or VMS itself.  Buffering
  54. can be improved in SYSGEN or AUTOGEN.  See the CKVINS.DOC file for
  55. lots of information about this.
  56.  
  57. Until you beef up the VMS and/or terminal server configuration,
  58. you're not going to get better performance no matter what your
  59. communication speed is.
  60.  
  61. : I'm happy with the 38400 performance, but wouldn't mind
  62. : trying the higher speed...  BTW - I think Kermit is wonderful
  63. : and I did BUY THE BOOK.  I also checked the FAQ.
  64. Thanks * 2.
  65.  
  66. - Frank